home *** CD-ROM | disk | FTP | other *** search
/ CD Actual Thematic 7: Programming / CDAT7.iso / demos / VisualAge for Java 2.0 Entry / setup / data1.cab / ide-e / IDE / cache / 1IB5RG0 (.txt) < prev    next >
Encoding:
Java Class File  |  1998-09-16  |  1.0 KB  |  14 lines

  1. package sun.beans.editors;
  2.  
  3. import java.beans.PropertyEditorSupport;
  4.  
  5. public class ShortEditor extends NumberEditor {
  6.    public String getJavaInitializationString() {
  7.       return "((short)" + ((PropertyEditorSupport)this).getValue() + ")";
  8.    }
  9.  
  10.    public void setAsText(String text) throws IllegalArgumentException {
  11.       ((PropertyEditorSupport)this).setValue(Short.valueOf(text));
  12.    }
  13. }
  14.